home *** CD-ROM | disk | FTP | other *** search
- module oCursorList is cCursorList
- has
- InitializeRuntime(theRuntime)
- do
- theRuntime.BusyCursor := oBusyCursor;
- theRuntime.InCursor := oArrowCursor;
- theRuntime.OutCursor := oDontCursor;
- end;
- with
- URL is "./DefaultCursors.pic";
- Items is [
- oEmptyCursor,
- oArrowCursor,
- oFingerCursor,
- oPlusCursor,
- oQueryCursor,
- oDontCursor,
- oTargetCursor,
- oCrossCursor,
- oWatchCursor,
- oBusyCursor,
- oHandCursor,
- oEarthCursor,
- oOpenHandCursor,
- oClosedHandCursor
- ];
- end;
-
- object oEmptyCursor is cCursor
- with
- HotSpotX is 0;
- HotSpotY is 0;
- release Editor:
- Identifier is "oEmptyCursor";
- Name is "Empty";
- end;
- end;
-
- object oArrowCursor is cCursor
- with
- HotSpotX is 4;
- HotSpotY is 1;
- release Editor:
- Identifier is "oArrowCursor";
- Name is "Arrow";
- end;
- end;
-
- object oFingerCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 0;
- release Editor:
- Identifier is "oFingerCursor";
- Name is "Finger";
- end;
- end;
-
- object oPlusCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 7;
- release Editor:
- Identifier is "oPlusCursor";
- Name is "Plus";
- end;
- end;
-
- object oQueryCursor is cCursor
- with
- HotSpotX is 2;
- HotSpotY is 4;
- release Editor:
- Identifier is "oQueryCursor";
- Name is "Query";
- end;
- end;
-
- object oDontCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 7;
- release Editor:
- Identifier is "oDontCursor";
- Name is "Don\'t";
- end;
- end;
-
- object oTargetCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 7;
- release Editor:
- Identifier is "oTargetCursor";
- Name is "Target";
- end;
- end;
-
- object oCrossCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 7;
- release Editor:
- Identifier is "oCrossCursor";
- Name is "Cross";
- end;
- end;
-
- object oWatchCursor is cAnimatedCursor
- with
- CursorCount is 7;
- HotSpotX is 8;
- HotSpotY is 8;
- release Editor:
- Identifier is "oWatchCursor";
- Name is "Watch";
- end;
- end;
-
- object oBusyCursor is cAnimatedCursor
- with
- CursorCount is 4;
- HotSpotX is 7;
- HotSpotY is 7;
- release Editor:
- Identifier is "oBusyCursor";
- Name is "Busy";
- end;
- end;
-
- object oHandCursor is cAnimatedCursor
- with
- CursorCount is 6;
- HotSpotX is 7;
- HotSpotY is 0;
- release Editor:
- Identifier is "oHandCursor";
- Name is "Hand";
- end;
- end;
-
- object oEarthCursor is cAnimatedCursor
- with
- CursorCount is 7;
- HotSpotX is 7;
- HotSpotY is 7;
- release Editor:
- Identifier is "oEarthCursor";
- Name is "Earth";
- end;
- end;
-
- object oOpenHandCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 0;
- release Editor:
- Identifier is "oOpenHandCursor";
- Name is "Open Hand";
- end;
- end;
-
- object oClosedHandCursor is cCursor
- with
- HotSpotX is 7;
- HotSpotY is 3;
- release Editor:
- Identifier is "oClosedHandCursor";
- Name is "Closed Hand";
- end;
- end;
-
-